home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SCI Games E3 2005 Press Kit (USA)
/
SCI Games E3 2005 Press Kit (USA).bin
/
runme_mac.swf
/
scripts
/
__Packages
/
mx
/
controls
/
streamingmedia
/
CuePoint.as
< prev
next >
Wrap
Text File
|
2005-05-05
|
259b
|
13 lines
class mx.controls.streamingmedia.CuePoint
{
function CuePoint(aName, aTime)
{
this.name = aName;
this.time = aTime;
}
function toString()
{
return "CuePoint: " + this.name + " at " + this.time + " seconds";
}
}